MCP Task Manager Server_deleteProject
Permanently delete a project and all associated tasks and dependencies using the project ID. This operation is irreversible and returns a confirmation upon successful completion.
Instructions
Permanently deletes a project and ALL associated tasks and dependencies. Requires the project ID. This is a highly destructive operation and cannot be undone. Returns a success confirmation upon completion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The unique identifier (UUID) of the project to permanently delete. This project must exist. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The unique identifier (UUID) of the project to permanently delete. This project must exist.",
"format": "uuid",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}